-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestrunner
More file actions
executable file
·29 lines (22 loc) · 984 Bytes
/
Copy pathtestrunner
File metadata and controls
executable file
·29 lines (22 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From sherlock repo, go to testrunner directory and run the following
commands to set up.
wget http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/pycrypto-2.3.tar.gz;
tar -xvf pycrypto-2.3.tar.gz
cd pycrypto-2.3
python setup.py build
sudo python setup.py install
cd ..
wget https://pypi.python.org/packages/source/p/paramiko/paramiko-1.9.0.tar.gz;
tar -xvf paramiko-1.9.0.tar.gz
cd paramiko-1.9.0
python setup.py build
sudo python setup.py install
python3 -m pip install couchbase==2.5.10
brew install libcouchbase@2
libcouchbase@2 is keg-only, which means it was not symlinked into /usr/local,
because this is an alternate version of another formula.
If you need to have libcouchbase@2 first in your PATH, run:
echo 'export PATH="/usr/local/opt/libcouchbase@2/bin:$PATH"' >> /Users/deepkaran/.bash_profile
For compilers to find libcouchbase@2 you may need to set:
export LDFLAGS="-L/usr/local/opt/libcouchbase@2/lib"
export CPPFLAGS="-I/usr/local/opt/libcouchbase@2/include"