Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mariusgiger/python-project-template


https://github.com/mariusgiger/python-project-template

Last synced: 12 days ago
JSON representation

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
```