Skip to content

Commit c775fa4

Browse files
committed
Added Managing Packages section
1 parent 36dbef2 commit c775fa4

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,20 @@ To run these sequences a light-weight IDE, or to target cross-platform developme
7171
To run these sequences in a more feature rich IDE, use the free [Visual Studio Community](https://visualstudio.microsoft.com/vs/community/). See [Python In Visual Studio](https://docs.microsoft.com/en-us/visualstudio/python/tutorial-working-with-python-in-visual-studio-step-00-installation?view=vs-2022) to simply setup your IDE with Python. Optionall, using a [virtual environment](https://docs.microsoft.com/en-us/visualstudio/python/managing-python-environments-in-visual-studio?view=vs-2022) is recommended to successfully meet the installation requirements to run these sequences.
7272

7373
### Packages
74-
Installing packages use pip. It is recommended that pip be updated to latest version `python3 -m pip install --upgrade pip`
74+
75+
#### Managing Packages
76+
##### How to Install/Upgraded Packages
77+
Installing packages use pip. It is recommended that pip be updated to latest version `python3 -m pip install --upgrade pip`
7578

7679
The version of pip can be displayed with the following command `pip3 -V`
7780

81+
##### How to View All Installed Packages
7882
A list of all installed packages can be found with `pip3 freeze` command
7983

80-
After a package is installed the details of a package can be displayed with the following command `pip3 show spikesafe-python`
84+
##### How to View Details of an Installed Package
85+
After a package is installed the details of a package can be displayed with the following command `pip3 show <package name>` (e.g. `pip3 show spikesafe-python`)
8186

82-
#### Installing spikesafe-python Package
87+
##### Installing spikesafe-python Package
8388
The [spikesafe-python](https://pypi.org/project/spikesafe-python/) library will need to be installed using the command `python3 -m pip install spikesafe-python`. Vektrex recommends always having the latest version of spikesafe-python when running these sequences; the current version is 1.2.3.
8489

8590
Once the spikesafe-python package is installed, each script in this repository can be run independently as a standalone Python file. Run a file in its current state and verify that the expected outputs are obtained, as specified by the file's markdown description.

0 commit comments

Comments
 (0)