winston1420
winston1420

Reputation: 162

The command 'pip freeze' on the linux bash shell is not showing any of the installed packages in the output

I'm using the Linux Bash shell on Windows to activate django virtual environment and I want to see if the packages I'm using in this certain project are showing up using pip freeze (just like in the tutorial I am watching, since I'm very new to Linux in general) but once I put in the command, it doesn't give me any errors it's just that it won't output any packages at all. This might be a very simple question to some of you guys but I was doing some research and I can't find anyone in the exact same circumstances I'm in, so I decided to come to SO for help.

the console

(djangoenv) winston1420@DESKTOP-PS608FU:/mnt/c/Users/admin/desktop/first_djangoproject_venv$ pip freeze +pip freeze

As you can see in the image, or code, it only shows the + pip freeze. Please, any help would be appreciated.

Upvotes: 1

Views: 1166

Answers (1)

winston1420
winston1420

Reputation: 162

This is what fixed it for me:

After I used the commnad python -m pip install --upgrade pip, the packages are showing up when using the pip freeze command.

Upvotes: 1

Related Questions