Installation problem for python 3.6

Hi I need to install PyTorcn for python3.6 but when I try to install it says
torch-0.1.8.post1-cp36-cp36m-linux_x86_64.whl is not a supported wheel on this platform.

command:
sudo pip3 install https://s3.amazonaws.com/pytorch/whl/cu75/torch-0.1.8.post1-cp36-cp36m-linux_x86_64.whl

What’s your OS? Do you have a 64-bit system?

My OS is Ubuntu 14.04 64-bit

@Hamid, please try this:

wget https://s3.amazonaws.com/pytorch/whl/cu75/torch-0.1.8.post1-cp36-cp36m-linux_x86_64.whl
mv torch-0.1.8.post1-cp36-cp36m-linux_x86_64.whl torch-0.1.8.post1-cp36-none-linux_x86_64.whl
pip install torch-0.1.8.post1-cp36-none-linux_x86_64.whl

Let me know if that works.
Also, what is the output of:

pip3 --version
python3 --version

Python 3.6.0 :: Anaconda 4.3.0 (64-bit)
pip 1.5.4 from /usr/lib/python3/dist-packages (python 3.4)

@smth No it didn’t work :frowning:
should the pip3 be linked to python3.6 instead of 3.4

Also,
python3.6 -m pip
/home/hamid/anaconda3/bin/python3.6: No module named pip

yes, the pip needs to be linked to python3.6, because the wheel file is for python 3.6

Could you tell how can I do that?

I did unintall anaconda.
pip3 --version :
pip 1.5.4 from /usr/lib/python3/dist-packages (python 3.4)

python3 --version
Python 3.4.3

Doesn’t it work with python 3.5?