Skip to content

Commit

Permalink
Added windows install using python suitable for thonny
Browse files Browse the repository at this point in the history
  • Loading branch information
rlangoy committed Sep 27, 2024
1 parent e47a2c1 commit 7453980
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions jupyter/installRequiredPackagesUsingPython.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import sys
import subprocess
pythonExeLocationAndName=sys.executable
listOfPackagesToInstall='requirements.txt'

pipInstallRequredPackagesString=f'"{pythonExeLocationAndName}" -m pip install -r requirements.txt'

print("Statring instllation of requred packages")
print(pipInstallRequredPackagesString)
subprocess.Popen(pipInstallRequredPackagesString, shell=True)
5 changes: 5 additions & 0 deletions jupyter/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
notebook>=7.0.0
chipwhisperer>=5.7.0
ipywidgets>=8.0.0
matplotlib>=3.6.3
ipympl>=0.9.0

0 comments on commit 7453980

Please sign in to comment.