0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

angrをUbuntu18.04にインストールする

Posted at

#はじめに
angrを使うことになりそうなのでインストールしてみた.今後のためにメモを残しておく.

#環境

  • Oracle VM VirtualBox
  • Ubuntu18.04.4 LTS
  • Python3.6.9

#手順

各種インストール

公式を見たところ,virtualenvを強く推奨しているみたいなので従ってみた.

sudo apt-get update
sudo apt-get upgrade

sudo apt-get install python3-dev libffi-dev build-essential virtualenvwrapper

シェルの再起動

この後いきなりmkvirtualenvを使うとcommand not foundと怒られた.理由は分からないがシェルを再起動する(単に閉じて開きなおす)と解決した.

仮想環境の構築

これでmkvirtualenvが使えるはずなので仮想環境を立てる.

mkvirtualenv --python=$(which python3) angr

angrのインストール

そして最後にpipでangrをいれる.

pip install angr

#動作確認
pythonコマンドでインタラクティブシェルに入ってimportできるか試す.

import angr

エラーが出なければ成功.

#virtualenvの使い方(おまけ)
##環境から抜けるとき

deactivate

##今回の環境に入るとき

workon angr

#最後に
次は簡単な例で使ってみたい.

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?