Skip to content

Instantly share code, notes, and snippets.

@master-of-zen
Last active July 13, 2021 20:11
Show Gist options
  • Save master-of-zen/0833bec1e7df72ed165083cd44e9187b to your computer and use it in GitHub Desktop.
Save master-of-zen/0833bec1e7df72ed165083cd44e9187b to your computer and use it in GitHub Desktop.
av1an rust install
  • Install python
  • Install rustup
  • Install rust nightly
git clone https://github.com/master-of-zen/Av1an
cd Av1an
python3 -m venv env
source env/bin/activate
pip install maturin
maturin develop --release -m av1an-pyo3/Cargo.toml
./av1an.py -i anything -l log.log 

Single command

git clone https://github.com/master-of-zen/Av1an ;
cd Av1an ;
python3 -m venv env ; 
source env/bin/activate ;
pip install maturin;
maturin develop --release -m av1an-pyo3/Cargo.toml;
./av1an.py -i anything -l log.log 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment