diff --git a/jupyter/installRequiredPackagesUsingPython.py b/jupyter/installRequiredPackagesUsingPython.py new file mode 100644 index 0000000..f4a3af4 --- /dev/null +++ b/jupyter/installRequiredPackagesUsingPython.py @@ -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) diff --git a/jupyter/requirements.txt b/jupyter/requirements.txt new file mode 100644 index 0000000..750317d --- /dev/null +++ b/jupyter/requirements.txt @@ -0,0 +1,5 @@ +notebook>=7.0.0 +chipwhisperer>=5.7.0 +ipywidgets>=8.0.0 +matplotlib>=3.6.3 +ipympl>=0.9.0 \ No newline at end of file