Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(fix): how to install Py. 3.8 on recent Ubuntu #3146

Merged
merged 4 commits into from
Dec 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion docs/source/getting-started/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,15 @@ Installation as an Application: Downloading Releases

ScanCode app archives come with packaged with all required dependencies except
for Python that has to be downloaded and installed separately.

On more recent versions of Ubuntu, you will ll have to install Python 3.8 manually.
One possibility is to use the Deadsnakes PPA (Personal Package Archive) which is
a project that provides older Python version builds for Debian and Ubuntu and is
available at https://github.com/deadsnakes/ and https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa
::

sudo apt-get update && sudo apt-get upgrade
sudo add-apt-repository ppa:deadsnakes/ppa --yes
sudo apt-get install python3.8 python3.8-distutils


Installation on Linux and Mac
Expand Down