Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

For those who want to compile and run it from 2024 #16

Open
wangziyao318 opened this issue Jan 9, 2024 · 0 comments
Open

For those who want to compile and run it from 2024 #16

wangziyao318 opened this issue Jan 9, 2024 · 0 comments

Comments

@wangziyao318
Copy link

I assume you are using Ubuntu 22.04 LTS.

The repository is quite old (in 2019), and the recommended setting is node v8.0.0 via nvm, python2-minimal from APT, and bower.

First, install nvm and use it to install node v8.0.0

# install nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash

# install node v8.0.0
nvm install 8.0.0

Then, install python2-minimal from APT package manager, and add soft link to python. You may remove the soft link and uninstall python2 after installation.

sudo apt install python2-minimal
sudo ln -s /usr/bin/python2 /usr/bin/python

After that, git clone this repository and cd in it. Here we begin the installation.

git clone https://github.com/sthnaqvi/explorer
cd explorer

# switch to node v8.0.0 and install bower
nvm use 8.0.0
npm install -g bower

# this will report CERT_HAS_EXPIRED error at the end when calling `bower install`, it's normal
npm install

# manually do `bower install`, ignore ssl check
bower install --config.strict-ssl=false

Finally, we can launch the webui, and now we can safely uninstall python2.

# everytime you open a new terminal in the repository folder
nvm use 8.0.0
npm start

Happy testing!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant