I'm going to use angr, so I installed it. I will leave a note for the future.
When I looked at Official, it seems that virtualenv is strongly recommended, so I followed it.
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install python3-dev libffi-dev build-essential virtualenvwrapper
After this, when I suddenly used mkvirtualenv, I was angry with command not found. I don't know the reason, but I solved it by restarting the shell (simply closing and reopening).
Now that you should be able to use mkvirtualenv, set up a virtual environment.
mkvirtualenv --python=$(which python3) angr
And finally, add angr with pip.
pip install angr
Enter the interactive shell with the python command and try to import.
import angr
Success if no error occurs.
deactivate
workon angr
Next, I would like to use a simple example.
Recommended Posts