Closed harunkelesoglu closed 5 years ago
@harunkelesoglu have you since resolved this? If no, can you try running sudo apt-get install build-essential
and then rerun the installation command?
I created a virtual env.I solved the problem. I think when I run this code line solved. Thanks @akelad
**While installing rasa using pip intsall rasa
, I do get the above mentioned error. Then as suggested I did run the command sudo apt-get install build-essential
and rerun the command pip intsall rasa
. Still I am getting error as follows:
gcc: error trying to exec 'cc1': execvp: No such file or directory
error: command 'gcc' failed with exit status 1
ERROR: Failed building wheel for ujson
Running setup.py clean for ujson
Building wheel for httptools (setup.py) ... error
ERROR: Command errored out with exit status 1:
We did the installation of rasa_core & rasa_nlu with lower versions. Can anybody assisting this installation?
Please create a new issue
you can try this comand to Install ujson separately. conda install -c anaconda ujson
I got the same error as above: solved by installing: ujson - 1.35 conda install ujson==1.35
Hi there, I encountered the same issue pertaining to ujson build error. It seems to me only ujson 1.35 is supported and compatible. And pip installing it directly doesn’t seem to work. You can download the wheel file for ujson 1.35 . like mine was ujson-1.35-cp37-cp37m-linux_x86_64.whl here cp37 means my cyptyhon version/ python version which is 3.7.x and x86_64 was compatible for my ubuntu16.04 platform. you can lookup appropriate wheel file accordingly. Then use the following command:
pip3 install ujson-1.35-cp37-cp37m-linux_x86_64.whl
then :
pip3 install rasa-x --extra-index-url https://pypi.rasa.com/simple
pip/pip3 both can be used.