OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
reader
/
venv
/
bin
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/03/2025 08:32:10 AM
rwxr-xr-x
📄
activate
2.09 KB
03/03/2025 08:25:25 AM
rw-r--r--
📄
activate.csh
1.4 KB
03/03/2025 08:25:25 AM
rw-r--r--
📄
activate.fish
2.94 KB
03/03/2025 08:25:25 AM
rw-r--r--
📄
activate.nu
3.25 KB
03/03/2025 08:25:25 AM
rw-r--r--
📄
activate.ps1
1.71 KB
03/03/2025 08:25:25 AM
rw-r--r--
📄
activate_this.py
1.15 KB
03/03/2025 08:25:25 AM
rw-r--r--
📄
pip
235 bytes
03/03/2025 08:25:25 AM
rw-r--r--
📄
pip-3.6
235 bytes
03/03/2025 08:25:25 AM
rw-r--r--
📄
pip3
235 bytes
03/03/2025 08:25:25 AM
rw-r--r--
📄
pip3.6
235 bytes
03/03/2025 08:25:25 AM
rw-r--r--
📄
python
4.32 MB
03/03/2025 08:25:26 AM
rw-r--r--
📄
python3
4.32 MB
03/03/2025 08:25:28 AM
rw-r--r--
📄
python3.6
4.32 MB
03/03/2025 08:25:28 AM
rw-r--r--
📄
wheel
222 bytes
03/03/2025 08:25:28 AM
rw-r--r--
📄
wheel-3.6
222 bytes
03/03/2025 08:25:28 AM
rw-r--r--
📄
wheel3
222 bytes
03/03/2025 08:25:28 AM
rw-r--r--
📄
wheel3.6
222 bytes
03/03/2025 08:25:28 AM
rw-r--r--
Editing: activate_this.py
Close
"""Activate virtualenv for current interpreter: Use exec(open(this_file).read(), {'__file__': this_file}). This can be used when you must use an existing Python interpreter, not the virtualenv bin/python. """ import os import site import sys try: abs_file = os.path.abspath(__file__) except NameError: raise AssertionError("You must use exec(open(this_file).read(), {'__file__': this_file}))") bin_dir = os.path.dirname(abs_file) base = bin_dir[: -len("bin") - 1] # strip away the bin part from the __file__, plus the path separator # prepend bin to PATH (this file is inside the bin directory) os.environ["PATH"] = os.pathsep.join([bin_dir] + os.environ.get("PATH", "").split(os.pathsep)) os.environ["VIRTUAL_ENV"] = base # virtual env is right above bin directory # add the virtual environments libraries to the host python import mechanism prev_length = len(sys.path) for lib in "../lib/python3.6/site-packages".split(os.pathsep): path = os.path.realpath(os.path.join(bin_dir, lib)) site.addsitedir(path.decode("utf-8") if "" else path) sys.path[:] = sys.path[prev_length:] + sys.path[0:prev_length] sys.real_prefix = sys.prefix sys.prefix = base