sorry for the basic question. I am very confused as to why my pip is not working on a remote unix machine. I have installed Python 3.5 in my home directory. In my PATH I have added
~/lib/python3.5
I also added to .bashrc
$ alias python=~/bin/python3.5
so when I type $ python in the command line, I get python 3.5. I can import pip from inside python (import pip) no problems. However using
$ pip install cython
I get: '-bash: pip: command not found' And if I try:
$ python -m pip install cython
I get:
'Collecting cython
Could not find a version that satisfies the requirement cython (from versions: ) No matching distribution found for cython'
Pip does not seem to be installed properly. Do I need to add anything to .bashrc?