Compare commits

...

4 Commits

Author SHA1 Message Date
Jimmy 23fe675c08 File typo 2021-11-08 21:22:39 +13:00
Jimmy d63f25b4f7 Add watch 2021-11-08 21:22:06 +13:00
Jimmy d3d782b419 Add setup instructions 2021-11-08 21:21:09 +13:00
Jimmy c0e4f76170 Add main.py 2021-11-08 21:20:51 +13:00
4 changed files with 51 additions and 3 deletions

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
.ipynb_checkpoints
Pifile.lock
Pipfile.lock

View File

@ -5,6 +5,7 @@ name = "pypi"
[packages]
jupyterlab = "*"
watchgod = "*"
[dev-packages]
@ -12,4 +13,5 @@ jupyterlab = "*"
python_version = "3.9"
[scripts]
jupyter = "jupyter lab --notebook-dir notebooks notebooks/picofumi.ipynb"
jupyter = "jupyter lab --notebook-dir notebooks notebooks/picofumi.ipynb"
watch = "watchgod src.main.main"

View File

@ -1,3 +1,44 @@
# PicoFumi
A Python Tutorial app
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```

5
src/main.py Normal file
View File

@ -0,0 +1,5 @@
def main():
print("Hello World")
if __name__ == "__main__":
main()