Skip to content

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

@wangziyao318

Description

@wangziyao318

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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions