ratt-ru / fundamentals_of_interferometry

Fundamentals of Radio Interferometry and Aperture Synthesis Book
GNU General Public License v2.0
150 stars 99 forks source link

Installation issue with make (.venv/bin/pip not found) #102

Open danieludick opened 4 years ago

danieludick commented 4 years ago

Good day. I have a new instance of Ubuntu (Description: Ubuntu 18.04.4 LTS) and want to get this notebook installed and running. I am following all the steps as noted in your README, but when I run make in the main directory, then I get the following error:

dludick@EE484701:~/ubuntu-home/fundamentals_of_interferometry$ make
/home/dludick/ubuntu-home/fundamentals_of_interferometry/.venv/bin/pip install -r requirements.txt
make: /home/dludick/ubuntu-home/fundamentals_of_interferometry/.venv/bin/pip: Command not found
Makefile:11: recipe for target '/home/dludick/ubuntu-home/fundamentals_of_interferometry/.venv/bin/jupyter-notebook' failed
make: *** [/home/dludick/ubuntu-home/fundamentals_of_interferometry/.venv/bin/jupyter-notebook] Error 127

Is there any advice?

Chadley1993 commented 3 years ago

Hi had the same problem. What you want to do is first download get-pip script with the following command: curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

Then then install with the virtual interpreter: .venv/bin/python3 get-pip.py

mangla-sarvesh commented 1 year ago

thanks