Spot an Oversight
00:00
You know what? I think I forgot something. While we did install the packages into the version environment of the pip
exercises folder, I didn’t freeze them.
00:11
So let’s have a look how the requirements
.txt
file in the pip
exercises folder looks right now.
00:18
I could navigate in there and then open it, but there is another way, and that’s using the cat
command. cat
is a command that helps you to look into a file from within the terminal.
00:30 And then I use the dot documentation to kind of navigate to the requirements file in the other folder, because right now I’m in the other exercises folder.
00:41 And when you have a look at the requirements file, you see these are not the versions that we currently have installed in the virtual environment because I haven’t pinned them into the requirements file yet.
00:53 So I guess we need to do a little bit of a detour and freeze the requirements first before we can continue.
Become a Member to join the conversation.