diff --git a/README.md b/README.md index 98b3614..966cba3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Getting Started -Latest review: 2022-04-04 +Latest review: 2023-04-05 ## Installation @@ -19,40 +19,25 @@ To use the software we need to: Each of these steps is explained below. -### Install python3 with sqlite3 support +### Install python with sqlite3 and pip support Minimum supported version is python3.9. The installed versions depend on the operating system default. ```sh -sudo pkg install python3 py39-sqlite3 # FreeBSD -sudo apt install python3 # Linux (Ubuntu) -sudo port install python311 # MacOS -``` - -### Install pip - -Install `pip` from the system package manager: - -```sh -sudo pkg install py39-pip # FreeBSD -sudo apt install python3-pip # Linux (Ubuntu) -sudo port install py311-pip # MacOS +sudo pkg install python3 py39-sqlite3 py39-pip # FreeBSD +sudo apt install python3 python3-pip # Linux (Ubuntu) +sudo port install python311 py311-pip # MacOS ``` In the end you should be able to run `python3 -m pip --version` and `python3 -c "import sqlite3"` without errors. Packages should **not** be installed system-wide. Either install them to a -python virtual environment or in the user area. - -To install in the user area use `python3 -m pip install --user some_package` or -edit the configuration file `~/.config/pip/pip.conf` (FreeBSD, Linux) or -`~/Library/Application Support/pip/pip.conf` (MacOS) and add the lines +python virtual environment or in the user area. To install in the user area use -```ini -[global] -user = yes +```sh +python3 -m pip install --user some_package ``` ### Install aprendizations -- libgit2 0.21.2