The tutorial requires the installation of Flask using Pipenv on an empty folder (my file path /Users/matthewnickolls/Desktop/Flask). I am installing via the Terminal using a zsh shell but I am getting the following 'No such file or directory' error message shown below:
I can see that the error is a result of a failure to load the path for (what I assume is) creating the virtual environment:
(/bin/sh: /Users/matthewnickolls/.local/share/virtualenvs/matthewnickolls-ydr5OSCv/bin/pip: /Users/matthewnickolls/.local/share/virtualenvs/matthewnickolls-ydr5OSCv/bin/p: bad interpreter: No such file or directory)
But I cannot work out how to resolve that problem.
I have noticed there is a warning earlier on during the installation that I should be using Python 3.7 but I am in fact, according to the warning message, using Python 3.9. I wasn't aware I was using 3.9 and thought my default would be 3.7.
Would this be the problem? If so is there a way of specifying that I wish Pipenv to install using Python 3.7?
For additional information, I also had difficulties installing Pipenv following the instructions from the same tutorial. Eventually managed it using an alternative method by first installing Homebrew (which I installed on the recommendation of the Pipenv webpage). I don't know whether that is relevant to solving the above problem, but given it is a Homebrew installed Pipenv that I am using to try to install Flask, I thought it might be worth mentioning in case it is.
When creating a virtual environment, Pipenv just creates a symlink to whatever
python
installation you tell it to use. So on a Mac, if you are usingpython
from Homebrew, then the virtual env would just contain a symlink to the Homebrew-installed Python (typically in/usr/local/opt/
). Then, the errors you got happens when:pipenv install
Demo:
I already created a virtual env using Homebrew's [email protected]
Check that virtual env
python
is just a symlink to brew's[email protected]
Accidentally, uninstall
[email protected]
(Probably you usedpython@3
when you installed with Homebrew, which refers to whatever latest Python version Homebrew supports. So, you originally had Python3.7, but then you updated it but Homebrew'spython@3
is now Python3.9, and that replaced your 3.7 installation)Now, when you invoke
pipenv
it will use anotherpython
installation. In this case, let's say you installed Homebrew's[email protected]
:There you'll get the same error because your virtual env's
python
was still symlinked to some Python installation that does not exist anymore. Pipenv does not automatically update it when you change your Python installations (because that's not its job). What complicates the problem is that you now changed from Python 3.7 (as registered in your Pipfile) to a different Python version 3.9.The solution to such errors is usually simple: just re-create your virtual environment using whatever is now the active/correct Python installation. Pipenv even hints at it:
So..
Just go to the directory and delete the old virtual env
Re-check your Python installations
I don't know what happened to your 3.7, but re-installing it (and specifying an exact version) would help
Get the path
Re-install everything but specify path to
python
--python
tells Pipenv which version of Python to use (and create a symlink to it)Check