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: Update guide for SCANOSS install on Ubuntu 24 #595

Closed
Closed
Changes from 1 commit
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
26 changes: 26 additions & 0 deletions doc/quick-start-guide-and-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,32 @@ Before building _LPVS_ from source code, ensure that you have the following prer
sudo apt install mysql-server
```


Note: for installing SCANOSS on Ubuntu 2023.04, Fedora 38, Debian 11, etc. or later versions of mentioned OSes-a few additional steps are required, as previously mentioned command : "pip3 install scanoss" will not work correctly.
o-konoval marked this conversation as resolved.
Show resolved Hide resolved
o-konoval marked this conversation as resolved.
Show resolved Hide resolved

More details: https://github.com/scanoss/scanoss.py/blob/main/PACKAGE.md#externally-managed-environments-on-linux

Steps(1-4):

1)Install pipx:
```bash
sudo apt install pipx
```
2)Install scanoss by using pipx:
```bash
pipx install scanoss
```
3)Add to PATH scanoss installation:
```bash
pipx ensurepath
```
4)Close the terminal, open new terminal and check if the command below is available from any location:
```bash
scanoss-py
```



o-konoval marked this conversation as resolved.
Show resolved Hide resolved
### 2. Create Necessary MySQL Database and User (optional if not using a database)

2.1 Start the MySQL server:
Expand Down
Loading