Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mariusgiger/python-project-template
https://github.com/mariusgiger/python-project-template
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mariusgiger/python-project-template
- Owner: mariusgiger
- Created: 2019-02-11T08:02:53.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-11T08:06:25.000Z (almost 6 years ago)
- Last Synced: 2024-11-09T05:38:06.930Z (2 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# python-project-template
Project description
## Dev Setup
Setup uses [Virtualenv](https://virtualenv.pypa.io/en/stable/).
```
pip3 install virtualenv
virtualenv -p python3 .
source ./bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install jupyter
```## Work
```
source ./bin/activate
jupyter notebook
```leave virtual env using the following command
```
deactivate
```