Open avramandrei opened 4 years ago
thanks for the report! will try to track down what's going on here...
Hi, I used to have the similar problem but eventually find a solution that works for me, hopefully it is useful for others.
I used ubuntu in a virtual machine. Then I installed these packages in conda virtual environment.
conda create -n myproject python=3.6
)conda install pytorch==1.0.0 torchvision==0.2.1 cuda100 -c pytorch
)sudo apt install build-essential
, this install packages such as gcc, g++ and makeWe can check whether g++ and gcc are installed properly using g++ --version
and gcc --version
command
With these, the compiling is working fine hopefully. Cheers!
Hey @Elizabeth65 is there any pip installation repo for build-essential?
Hello,
I am trying to install ctcdecode in a docker environment with PyTorch 1.5.1 and Cuda 10.1 in it.
This is the Dockerfile:
and this is the error I get:
Any ideas why the build fails?
Thank you, Andrei