CARVIEW |
Select Language
HTTP/2 200
date: Sun, 27 Jul 2025 06:26:29 GMT
content-type: text/html; charset=utf-8
vary: X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With
etag: W/"fa0eb026d1c90f014335bc32b7cca482"
cache-control: max-age=0, private, must-revalidate
strict-transport-security: max-age=31536000; includeSubdomains; preload
x-frame-options: deny
x-content-type-options: nosniff
x-xss-protection: 0
referrer-policy: no-referrer-when-downgrade
content-security-policy: default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/
server: github.com
content-encoding: gzip
accept-ranges: bytes
set-cookie: _gh_sess=PZxK0wj0d64NZ8s3UU1py3YTrWpzZ7ipoTZvqgyvwvAerAuu3y3X3h%2BomMp8uPmVJL%2F1oAiPwCB%2FKVuXAEoepoNJQKuFSClX4S1jNCT5zy%2BIlbIAXUFsQtxSvviIhd0At%2FXGcrvNINeLbVYL%2BR2zdN9QDDM5U6hX1D%2Fp9ryLey7xpVMvFdvbn8pfsy2Mu3HnqOEwxAnt6ogx69UnqkT028X7iIUD6GQtJouf6Y4ccK3nMQs3NsHJgBUfqGR89B969RWtPPn51h2e%2FXZAr4fs6w%3D%3D--AI4KYnW7cjIKOqqi--b%2FpCpSGiqPBeJ4y0G5vpZQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax
set-cookie: _octo=GH1.1.1704557463.1753597588; Path=/; Domain=github.com; Expires=Mon, 27 Jul 2026 06:26:28 GMT; Secure; SameSite=Lax
set-cookie: logged_in=no; Path=/; Domain=github.com; Expires=Mon, 27 Jul 2026 06:26:28 GMT; HttpOnly; Secure; SameSite=Lax
x-github-request-id: EB8A:242CC6:B6BB03:F31FFC:6885C694
Installing on virtualenv (linux) · bugy/script-server Wiki · GitHub
Skip to content
Navigation Menu
{{ message }}
-
-
Notifications
You must be signed in to change notification settings - Fork 265
Installing on virtualenv (linux)
Shinebayar G edited this page Sep 3, 2019
·
3 revisions
- Install python virtualenv using (replace
apt
with your package manager)sudo apt install python3-venv
- Create virtualenv named envname for python3 using
python3 -m venv any/path/envname
- Enter to virtual env
source any/path/envname/bin/activate
- Check python version using
python -V
- Create a folder for script server and navigate to it
mkdir -p any/path/script-server && cd any/path/script-server
- Download latest release
wget https://github.com/bugy/script-server/releases/latest/download/script-server.zip
- Extract zip contents
unzip script-server.zip
(If unzip command not found, install unzip withsudo apt-get install unzip
) - Install requirements
pip install -r requirements.txt
- Run the server
python launcher.py
Bonus: If using virtualenv's python, then systemd startup script python path would be:
- Find out virtualenv's python path (When virtualenv is activated)
which python
copy result - Edit
/lib/systemd/system/script-server.service
ExecStart=/usr/bin/python3
would be ->paste here
Example something like this:/home/user/script-server/envname/bin/python
The similar change should be done for init.d
Notes: If you're getting
pip install -r requirements.txt
Collecting typing (from -r requirements.txt (line 1))
Downloading https://files.pythonhosted.org/packages/4a/bd/eee1157fc2d8514970b345d69cb9975dcd1e42cd7e61146ed841f6e68309/typing-3.6.6-py3-none-any.whl
Collecting tornado<6 (from -r requirements.txt (line 2))
Downloading https://files.pythonhosted.org/packages/e6/78/6e7b5af12c12bdf38ca9bfe863fcaf53dc10430a312d0324e76c1e5ca426/tornado-5.1.1.tar.gz (516kB)
100% |████████████████████████████████| 522kB 2.3MB/s
Building wheels for collected packages: tornado
Running setup.py bdist_wheel for tornado ... error
Complete output from command /home/shinee/sites/script-server/env/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-9m5zqpq7/tornado/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/tmp8sqzva6bpip-wheel- --python-tag cp36:
usage: -c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: -c --help [cmd1 cmd2 ...]
or: -c --help-commands
or: -c cmd --help
error: invalid command 'bdist_wheel'
----------------------------------------
Failed building wheel for tornado
Running setup.py clean for tornado
Failed to build tornado
Installing collected packages: typing, tornado
Running setup.py install for tornado ... done
Successfully installed tornado-5.1.1 typing-3.6.6
error either update your pip version or install wheel package.
pip install --upgrade pip
or pip install -U wheel
Clone this wiki locally
You can’t perform that action at this time.