-
Notifications
You must be signed in to change notification settings - Fork 5
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
Onnx library #15
base: main
Are you sure you want to change the base?
Onnx library #15
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, also collect comments from colleagues who will follow your instructions
*when you use pip, you need to use **venv** to avoid conflict between package managers (apt and pip)* | ||
|
||
*in source(onnx) directory execute these commands:* | ||
``` | ||
python3 -m venv .venv | ||
source .venv/bin/activate | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- It is not necessary to be done in onnx directory
- It is better to guide users to run something from the specific directory directly specifying
cd <work-dir>
>to install pip `sudo apt-get install -y python3-pip` | ||
> | ||
>to install venv `sudo apt-get install -y python3-venv` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- It is better to move up things that should be done before
- You may mention that as a part of build requirements, like:
Requirements:- Python 3.x (specify minimal required version) with pip and venv (optional)
Co-authored-by: Arseniy Obolenskiy <[email protected]>
No description provided.