MDS College Assignments and Projects
To set up the Python virtual environment for this project:
- Navigate to the ds-fundamentals directory:
cd ds-fundamentals
- Create a new virtual environment:
python -m venv venv
- Activate the virtual environment:
- On macOS/Linux:
source venv/bin/activate
- On Windows:
.\venv\Scripts\activate
When activated, your command prompt will show (venv)
at the beginning, indicating you're working within the virtual environment.
To deactivate the virtual environment when you're done:
deactivate