Skip to content

Latest commit

 

History

History
40 lines (22 loc) · 423 Bytes

File metadata and controls

40 lines (22 loc) · 423 Bytes

AIdentity: Your Career Hub

Create an environment:

python3 -m venv myenv

Activating it:


source myenv/bin/activate

Deactivate environment:

deactivate

Install everything

pip install -r requirements.txt

After you're done updating code:

This command will add all the packages in your code to the requirements.txt file

pip freeze > requirements.txt