snare / voltron

A hacky debugger UI for hackers
MIT License
6.18k stars 414 forks source link

debian 8 + voltron #84

Closed ret5et closed 8 years ago

ret5et commented 9 years ago
 cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 8 (jessie)"
gdb --version
GNU gdb (Debian 7.7.1+dfsg-5) 7.7.1

cd /tmp
sudo apt-get install libreadline6-dev python3-dev python3-setuptools python3-yaml
mkdir bug
cd bug/
virtualenv -p python3 env
source env/bin/activate
git clone https://github.com/snare/voltron.git
cd voltron
python3 setup.py install
....
....
#Download error on https://pypi.python.org/simple/MarkupSafe/: [Errno 113] No route to host -- Some #packages may not be found!
pip install --upgrade pip
pip install MarkupSafe
python3 setup.py install
Finished processing dependencies for voltron==0.1 (ok?)

cp voltron/voltron/config/default.cfg  ~/.voltron/config

$gdb source voltron/dbgentry.py Exception <type 'exceptions.ImportError'> raised while loading Voltron: No module named blessed

Stolas commented 9 years ago

Try: https://github.com/snare/voltron/issues/83

snare commented 9 years ago

GDB's Python won't be using the virtualenv. You'll either need to not use the virtualenv, or try setting PYTHONPATH to include the virtualenv. That may not work with embedded Python, I've never tried it.

On 30 Jul 2015, at 12:33 am, ret5et notifications@github.com wrote:

cat /etc/os-release PRETTY_NAME="Debian GNU/Linux 8 (jessie)" gdb --version GNU gdb (Debian 7.7.1+dfsg-5) 7.7.1

cd /tmp sudo apt-get install libreadline6-dev python3-dev python3-setuptools python3-yaml mkdir bug cd bug/ virtualenv -p python3 env source env/bin/activate git clone https://github.com/snare/voltron.git cd voltron python3 setup.py install .... ....

Download error on https://pypi.python.org/simple/MarkupSafe/: [Errno 113] No route to host -- Some #packages may not be found!

pip install --upgrade pip pip install MarkupSafe python3 setup.py install Finished processing dependencies for voltron==0.1 (ok?)

cp voltron/voltron/config/default.cfg ~/.voltron/config

$gdb source ~voltron/dbgentry.py Exception raised while loading Voltron: No module named blessed

— Reply to this email directly or view it on GitHub.