We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba6f831 commit 50d44cfCopy full SHA for 50d44cf
ida/install
@@ -1,16 +1,21 @@
1
#!/bin/bash -ex
2
3
# our venv shenanigans
4
-virtualenv --system-site-packages venv
+python3.13 -m venv venv
5
+source venv/bin/activate
6
7
tar xvf ~/Downloads/IDA*.tar.gz
8
9
IDA_DIR=$(dirname */libida.so)
10
11
pushd $IDA_DIR
-echo 0 | ./idapyswitch
12
+./idapyswitch --force-path /usr/lib/x86_64-linux-gnu/libpython3.13.so.1.0
13
popd
14
15
+# install this here
16
+pip install ida-pro-mcp
17
+ida-pro-mcp --install
18
+
19
mkdir bin
20
cat <<END >bin/ida64
21
#!/bin/bash
ida/install-root-debian
@@ -0,0 +1,3 @@
+#!/bin/bash -ex
+apt-get install python3.13-venv libpython3.13
0 commit comments