username@ubuntu:~$ cd revkit-2.2
username@ubuntu:~/revkit-2.2$ ./make.py bootstrap
bash: ./make.py: No such file or directory
这是什么意思?为什么会发生这种情况?
答案1
make.py
这意味着目录中没有命名的文件revkit-2.2
。
这些是其中包含的文件和目录revkit-2.2
:
total 56
drwxr-xr-x 8 norman norman 4096 Dec 22 05:28 .
drwxr-xr-x 6 norman norman 4096 Feb 26 21:43 ..
drwxr-xr-x 5 norman norman 4096 Dec 22 05:28 addons
-rw-r--r-- 1 norman norman 2740 Dec 22 05:28 CMakeLists.txt
drwxr-xr-x 2 norman norman 4096 Dec 22 05:28 ext
drwxr-xr-x 4 norman norman 4096 Dec 22 05:28 gui
drwxr-xr-x 4 norman norman 4096 Dec 22 05:28 programs
-rw-r--r-- 1 norman norman 770 Dec 22 05:28 README.md
drwxr-xr-x 5 norman norman 4096 Dec 22 05:28 src
drwxr-xr-x 5 norman norman 4096 Dec 22 05:28 test
您应该阅读该README.md
文件以获取说明:
# RevKit
## Requirements
The following software is required in order to build RevKit
* git
* cmake (at least version 2.8.9)
* g++ or clang++ (with C++11 support)
* boost (at least version 1.48.0)
* GNU MP, and its C++ interface GMP++
* Qt5 (only for the GUI)
## Build RevKit
After cloning RevKit perform the following steps
mkdir build
cd build
cmake ..
make
To build the GUI perform the following steps from the base directory
cd gui
mkdir build
cd build
cmake ..
make
## Build RevKit Addons
The easiest way to enable addons is by typing `ccmake ..' in the build directory
## Executing RevKit Programs
Executables can be found in the directory `build/programs'. Form the build
directory call e.g. `programs/circuit_info'
如果您有任何其他问题,请编辑您的问题/评论!:)