Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shubhamprajapati7748/complete-python
Complete-Python-Repo
https://github.com/shubhamprajapati7748/complete-python
Last synced: 4 days ago
JSON representation
Complete-Python-Repo
- Host: GitHub
- URL: https://github.com/shubhamprajapati7748/complete-python
- Owner: shubhamprajapati7748
- Created: 2024-09-21T06:32:40.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-11-18T01:40:52.000Z (2 months ago)
- Last Synced: 2024-12-08T13:29:23.337Z (about 2 months ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 2.78 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Complete-Python-Repo
## 1. Create the virtual environment using Anaconda
1. To create the env : `conda create -p venv python==3.10 -y`
2. To activate the env : `conda activate venv/`
3. To deactivate the env : `conda deactivate`## 2. Install all the dependencies:
- Run this command : `pip install -r requirements.txt`