cookiecutter-modern-datascience
Start a data science project with modern tools
File Explorer
- _config.yml
- index.md
- post_gen_project.py
- pre_gen_project.py
- test_creation.py
- README.md
- README.md
- README.md
- README.md
- .gitignore
- README.md
- README.md
- _config.yml
- index.md
- README.md
- README.md
- README.md
- README.md
- README.md
- .gitignore
- input.json
- output.json
- test_pipelines.py
- __init__.py
- etl.py
- features.py
- train.py
- visualize.py
- pipelines.py
- Pipfile
- README.md
- input.json
- output.json
- test_app.py
- app.py
- Dockerfile
- Pipfile
- README.md
- .gitignore
- LICENSE
- Pipfile
- README.md
- .gitignore
- .pre-commit-config.yaml
- cookiecutter.json
- LICENSE
- Pipfile
- Pipfile.lock
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pipenv
View Details ▼
pipenv
Simple and unified Python development workflow.
Manage packages and the virtual environment for a project.
pipenv
Create a new project:
pipenv --three
Create a new project using Python 3:
pipenv install {{package}}
Install a package:
