2021-11-08 06:03:12 +00:00
|
|
|
# PicoFumi
|
|
|
|
|
2021-11-08 08:21:09 +00:00
|
|
|
A Python Tutorial app
|
|
|
|
|
|
|
|
|
|
|
|
## Installing Python
|
|
|
|
You will need Python 3.9
|
|
|
|
|
|
|
|
## Window
|
|
|
|
Either get it on the Microsoft Store or down load it [here](https://www.python.org/ftp/python/3.9.8/python-3.9.8-amd64.exe)
|
|
|
|
|
|
|
|
## Apt
|
|
|
|
|
|
|
|
```sudo apt install python3.9 python3-pip```
|
|
|
|
|
|
|
|
## Yum
|
|
|
|
|
|
|
|
```sudo yum install python3.9 python3-pip```
|
|
|
|
|
|
|
|
## Mac
|
|
|
|
|
|
|
|
Download it [here](https://www.python.org/ftp/python/3.9.8/python-3.9.8-macos11.pkg)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Install pipenv
|
|
|
|
|
|
|
|
On Windows open Powershell
|
|
|
|
On Linux or Mac open the terminal
|
|
|
|
|
|
|
|
```pip install pipenv```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
```pipenv lock```
|
|
|
|
|
|
|
|
```pipenv sync```
|
|
|
|
|
|
|
|
|
|
|
|
## Run Jupyter
|
|
|
|
|
|
|
|
```pipenv run jupyter```
|