AI个人学习
和实操指南

让ChatGPT列出Python代码解释器中所有安装包

输入指令

Use the following snippet with the code tool:

```python
import pkg_resources

# Prepare the list of installed packages with their location
installed_packages = [
f"{dist.project_name}=={dist.version} ({dist.location})"
for dist in pkg_resources.working_set
]

# Write the full list to a text file
file_path = '/mnt/data/list.txt'
with open(file_path, 'w') as file:
for package in installed_packages:
file.write(package + '\n')

file_path
```

...and give the result as such:
- No brevity, include everything
- The code should generate the full list in /mnt/data/list.txt and give a download link

 

输出结果

让ChatGPT列出Python代码解释器中所有安装包-1

 

安装包列表

pdfminer.six==20220319 (/home/sandbox/.local/lib/python3.11/site-packages)
tifffile==2024.8.10 (/home/sandbox/.local/lib/python3.11/site-packages)
regex==2024.7.24 (/home/sandbox/.local/lib/python3.11/site-packages)
certifi==2024.7.4 (/home/sandbox/.local/lib/python3.11/site-packages)
xarray==2024.3.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pytz==2024.1 (/home/sandbox/.local/lib/python3.11/site-packages)
jsonschema-specifications==2023.12.1 (/home/sandbox/.local/lib/python3.11/site-packages)
weasyprint==53.3 (/home/sandbox/.local/lib/python3.11/site-packages)
pyzmq==26.1.1 (/home/sandbox/.local/lib/python3.11/site-packages)
attrs==24.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
packaging==24.1 (/home/sandbox/.local/lib/python3.11/site-packages)
argon2-cffi==23.1.0 (/home/sandbox/.local/lib/python3.11/site-packages)
argon2-cffi-bindings==21.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pyOpenSSL==21.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pycountry==20.7.3 (/home/sandbox/.local/lib/python3.11/site-packages)
dlib==19.24.2 (/home/sandbox/.local/lib/python3.11/site-packages)
lit==18.1.8 (/home/sandbox/.local/lib/python3.11/site-packages)
rich==13.7.1 (/home/sandbox/.local/lib/python3.11/site-packages)
nvidia-cublas-cu11==11.10.3.66 (/home/sandbox/.local/lib/python3.11/site-packages)
nvidia-cuda-cupti-cu11==11.7.101 (/home/sandbox/.local/lib/python3.11/site-packages)
nvidia-cuda-nvrtc-cu11==11.7.99 (/home/sandbox/.local/lib/python3.11/site-packages)
nvidia-cuda-runtime-cu11==11.7.99 (/home/sandbox/.local/lib/python3.11/site-packages)
nvidia-nvtx-cu11==11.7.91 (/home/sandbox/.local/lib/python3.11/site-packages)
nvidia-cusparse-cu11==11.7.4.91 (/home/sandbox/.local/lib/python3.11/site-packages)
nvidia-cusolver-cu11==11.4.0.1 (/home/sandbox/.local/lib/python3.11/site-packages)
nvidia-cufft-cu11==10.9.0.58 (/home/sandbox/.local/lib/python3.11/site-packages)
websockets==10.3 (/home/sandbox/.local/lib/python3.11/site-packages)
nvidia-curand-cu11==10.2.10.91 (/home/sandbox/.local/lib/python3.11/site-packages)
Pillow==9.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
py-cpuinfo==9.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
tenacity==9.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
ipython==8.26.0 (/home/sandbox/.local/lib/python3.11/site-packages)
Faker==8.13.2 (/home/sandbox/.local/lib/python3.11/site-packages)
nvidia-cudnn-cu11==8.5.0.96 (/home/sandbox/.local/lib/python3.11/site-packages)
importlib-metadata==8.4.0 (/home/sandbox/.local/lib/python3.11/site-packages)
thinc==8.2.5 (/home/sandbox/.local/lib/python3.11/site-packages)
click==8.1.7 (/home/sandbox/.local/lib/python3.11/site-packages)
nbconvert==7.16.4 (/home/sandbox/.local/lib/python3.11/site-packages)
jupyter-client==7.4.9 (/home/sandbox/.local/lib/python3.11/site-packages)
qrcode==7.3 (/home/sandbox/.local/lib/python3.11/site-packages)
smart-open==7.0.4 (/home/sandbox/.local/lib/python3.11/site-packages)
ipykernel==6.29.5 (/home/sandbox/.local/lib/python3.11/site-packages)
notebook==6.5.1 (/home/sandbox/.local/lib/python3.11/site-packages)
importlib-resources==6.4.3 (/home/sandbox/.local/lib/python3.11/site-packages)
tornado==6.4.1 (/home/sandbox/.local/lib/python3.11/site-packages)
pytest==6.2.5 (/home/sandbox/.local/lib/python3.11/site-packages)
bleach==6.1.0 (/home/sandbox/.local/lib/python3.11/site-packages)
multidict==6.0.5 (/home/sandbox/.local/lib/python3.11/site-packages)
PyYAML==6.0.2 (/home/sandbox/.local/lib/python3.11/site-packages)
hyperframe==6.0.1 (/home/sandbox/.local/lib/python3.11/site-packages)
rdflib==6.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
psutil==6.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
traitlets==5.14.3 (/home/sandbox/.local/lib/python3.11/site-packages)
nbformat==5.10.4 (/home/sandbox/.local/lib/python3.11/site-packages)
ujson==5.10.0 (/home/sandbox/.local/lib/python3.11/site-packages)
cachetools==5.5.0 (/home/sandbox/.local/lib/python3.11/site-packages)
plotly==5.3.0 (/home/sandbox/.local/lib/python3.11/site-packages)
lxml==5.3.0 (/home/sandbox/.local/lib/python3.11/site-packages)
jupyter-core==5.1.3 (/home/sandbox/.local/lib/python3.11/site-packages)
tqdm==4.64.0 (/home/sandbox/.local/lib/python3.11/site-packages)
fonttools==4.53.1 (/home/sandbox/.local/lib/python3.11/site-packages)
jsonschema==4.23.0 (/home/sandbox/.local/lib/python3.11/site-packages)
beautifulsoup4==4.12.3 (/home/sandbox/.local/lib/python3.11/site-packages)
typing-extensions==4.10.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pexpect==4.9.0 (/home/sandbox/.local/lib/python3.11/site-packages)
opencv-python==4.5.5.62 (/home/sandbox/.local/lib/python3.11/site-packages)
decorator==4.4.2 (/home/sandbox/.local/lib/python3.11/site-packages)
gensim==4.3.1 (/home/sandbox/.local/lib/python3.11/site-packages)
platformdirs==4.2.2 (/home/sandbox/.local/lib/python3.11/site-packages)
bcrypt==4.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
h2==4.1.0 (/home/sandbox/.local/lib/python3.11/site-packages)
async-timeout==4.0.3 (/home/sandbox/.local/lib/python3.11/site-packages)
pymc==4.0.1 (/home/sandbox/.local/lib/python3.11/site-packages)
Flask-Cors==4.0.1 (/home/sandbox/.local/lib/python3.11/site-packages)
munch==4.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
rarfile==4.0 (/home/sandbox/.local/lib/python3.11/site-packages)
hpack==4.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
cmake==3.30.2 (/home/sandbox/.local/lib/python3.11/site-packages)
zipp==3.20.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pycryptodome==3.20.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pycryptodomex==3.20.0 (/home/sandbox/.local/lib/python3.11/site-packages)
filelock==3.15.4 (/home/sandbox/.local/lib/python3.11/site-packages)
orjson==3.10.7 (/home/sandbox/.local/lib/python3.11/site-packages)
trimesh==3.9.29 (/home/sandbox/.local/lib/python3.11/site-packages)
aiohttp==3.8.6 (/home/sandbox/.local/lib/python3.11/site-packages)
tables==3.8.0 (/home/sandbox/.local/lib/python3.11/site-packages)
h5py==3.8.0 (/home/sandbox/.local/lib/python3.11/site-packages)
spacy==3.7.5 (/home/sandbox/.local/lib/python3.11/site-packages)
anyio==3.7.1 (/home/sandbox/.local/lib/python3.11/site-packages)
idna==3.7 (/home/sandbox/.local/lib/python3.11/site-packages)
reportlab==3.6.12 (/home/sandbox/.local/lib/python3.11/site-packages)
matplotlib==3.6.3 (/home/sandbox/.local/lib/python3.11/site-packages)
nltk==3.6.3 (/home/sandbox/.local/lib/python3.11/site-packages)
pyproj==3.6.1 (/home/sandbox/.local/lib/python3.11/site-packages)
threadpoolctl==3.5.0 (/home/sandbox/.local/lib/python3.11/site-packages)
cryptography==3.4.8 (/home/sandbox/.local/lib/python3.11/site-packages)
jupyterlab==3.4.8 (/home/sandbox/.local/lib/python3.11/site-packages)
paramiko==3.4.1 (/home/sandbox/.local/lib/python3.11/site-packages)
langcodes==3.4.0 (/home/sandbox/.local/lib/python3.11/site-packages)
exchange-calendars==3.4 (/home/sandbox/.local/lib/python3.11/site-packages)
opt-einsum==3.3.0 (/home/sandbox/.local/lib/python3.11/site-packages)
jsonpickle==3.2.2 (/home/sandbox/.local/lib/python3.11/site-packages)
XlsxWriter==3.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
jinja2==3.1.4 (/home/sandbox/.local/lib/python3.11/site-packages)
pyparsing==3.1.2 (/home/sandbox/.local/lib/python3.11/site-packages)
prompt-toolkit==3.0.47 (/home/sandbox/.local/lib/python3.11/site-packages)
spacy-legacy==3.0.12 (/home/sandbox/.local/lib/python3.11/site-packages)
openpyxl==3.0.10 (/home/sandbox/.local/lib/python3.11/site-packages)
preshed==3.0.9 (/home/sandbox/.local/lib/python3.11/site-packages)
chardet==3.0.4 (/home/sandbox/.local/lib/python3.11/site-packages)
flask==3.0.3 (/home/sandbox/.local/lib/python3.11/site-packages)
werkzeug==3.0.3 (/home/sandbox/.local/lib/python3.11/site-packages)
mistune==3.0.2 (/home/sandbox/.local/lib/python3.11/site-packages)
audioread==3.0.1 (/home/sandbox/.local/lib/python3.11/site-packages)
cloudpickle==3.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
markdown-it-py==3.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pyttsx3==2.90 (/home/sandbox/.local/lib/python3.11/site-packages)
imageio==2.35.1 (/home/sandbox/.local/lib/python3.11/site-packages)
requests==2.31.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pycparser==2.22 (/home/sandbox/.local/lib/python3.11/site-packages)
fastjsonschema==2.20.0 (/home/sandbox/.local/lib/python3.11/site-packages)
jupyterlab-server==2.19.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pydantic-core==2.18.3 (/home/sandbox/.local/lib/python3.11/site-packages)
pygments==2.18.0 (/home/sandbox/.local/lib/python3.11/site-packages)
babel==2.16.0 (/home/sandbox/.local/lib/python3.11/site-packages)
nvidia-nccl-cu11==2.14.3 (/home/sandbox/.local/lib/python3.11/site-packages)
pyswisseph==2.10.3.2 (/home/sandbox/.local/lib/python3.11/site-packages)
numexpr==2.10.1 (/home/sandbox/.local/lib/python3.11/site-packages)
python-dateutil==2.9.0.post0 (/home/sandbox/.local/lib/python3.11/site-packages)
pydantic-extra-types==2.9.0 (/home/sandbox/.local/lib/python3.11/site-packages)
PyJWT==2.9.0 (/home/sandbox/.local/lib/python3.11/site-packages)
networkx==2.8.8 (/home/sandbox/.local/lib/python3.11/site-packages)
anytree==2.8.0 (/home/sandbox/.local/lib/python3.11/site-packages)
snowflake-connector-python==2.7.12 (/home/sandbox/.local/lib/python3.11/site-packages)
aesara==2.7.3 (/home/sandbox/.local/lib/python3.11/site-packages)
pydantic==2.7.2 (/home/sandbox/.local/lib/python3.11/site-packages)
dnspython==2.6.1 (/home/sandbox/.local/lib/python3.11/site-packages)
keras==2.6.0 (/home/sandbox/.local/lib/python3.11/site-packages)
soupsieve==2.6 (/home/sandbox/.local/lib/python3.11/site-packages)
CairoSVG==2.5.2 (/home/sandbox/.local/lib/python3.11/site-packages)
markdown2==2.5.0 (/home/sandbox/.local/lib/python3.11/site-packages)
srsly==2.4.8 (/home/sandbox/.local/lib/python3.11/site-packages)
asttokens==2.4.1 (/home/sandbox/.local/lib/python3.11/site-packages)
bokeh==2.4.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pydantic-settings==2.4.0 (/home/sandbox/.local/lib/python3.11/site-packages)
affine==2.4.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pyshp==2.3.1 (/home/sandbox/.local/lib/python3.11/site-packages)
gradio==2.2.15 (/home/sandbox/.local/lib/python3.11/site-packages)
gTTS==2.2.3 (/home/sandbox/.local/lib/python3.11/site-packages)
email-validator==2.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pyluach==2.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
geopy==2.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
itsdangerous==2.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
kerykeion==2.1.16 (/home/sandbox/.local/lib/python3.11/site-packages)
MarkupSafe==2.1.5 (/home/sandbox/.local/lib/python3.11/site-packages)
charset-normalizer==2.1.1 (/home/sandbox/.local/lib/python3.11/site-packages)
absl-py==2.1.0 (/home/sandbox/.local/lib/python3.11/site-packages)
catalogue==2.0.10 (/home/sandbox/.local/lib/python3.11/site-packages)
cymem==2.0.8 (/home/sandbox/.local/lib/python3.11/site-packages)
python-json-logger==2.0.7 (/home/sandbox/.local/lib/python3.11/site-packages)
torchaudio==2.0.2 (/home/sandbox/.local/lib/python3.11/site-packages)
tomli==2.0.1 (/home/sandbox/.local/lib/python3.11/site-packages)
executing==2.0.1 (/home/sandbox/.local/lib/python3.11/site-packages)
torch==2.0.1 (/home/sandbox/.local/lib/python3.11/site-packages)
priority==2.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
triton==2.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
blosc2==2.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
iniconfig==2.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
geographiclib==1.52 (/home/sandbox/.local/lib/python3.11/site-packages)
mutagen==1.45.1 (/home/sandbox/.local/lib/python3.11/site-packages)
PyPDF2==1.28.6 (/home/sandbox/.local/lib/python3.11/site-packages)
urllib3==1.26.19 (/home/sandbox/.local/lib/python3.11/site-packages)
numpy==1.24.0 (/home/sandbox/.local/lib/python3.11/site-packages)
jupyter-server==1.23.5 (/home/sandbox/.local/lib/python3.11/site-packages)
PyMuPDF==1.21.1 (/home/sandbox/.local/lib/python3.11/site-packages)
cffi==1.17.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pdf2image==1.16.3 (/home/sandbox/.local/lib/python3.11/site-packages)
wrapt==1.16.0 (/home/sandbox/.local/lib/python3.11/site-packages)
six==1.16.0 (/home/sandbox/.local/lib/python3.11/site-packages)
py==1.11.0 (/home/sandbox/.local/lib/python3.11/site-packages)
backoff==1.10.0 (/home/sandbox/.local/lib/python3.11/site-packages)
yarl==1.9.4 (/home/sandbox/.local/lib/python3.11/site-packages)
scipy==1.9.3 (/home/sandbox/.local/lib/python3.11/site-packages)
Fiona==1.9.2 (/home/sandbox/.local/lib/python3.11/site-packages)
wordcloud==1.9.2 (/home/sandbox/.local/lib/python3.11/site-packages)
debugpy==1.8.5 (/home/sandbox/.local/lib/python3.11/site-packages)
Send2Trash==1.8.3 (/home/sandbox/.local/lib/python3.11/site-packages)
blinker==1.8.2 (/home/sandbox/.local/lib/python3.11/site-packages)
pooch==1.8.2 (/home/sandbox/.local/lib/python3.11/site-packages)
sympy==1.8 (/home/sandbox/.local/lib/python3.11/site-packages)
websocket-client==1.8.0 (/home/sandbox/.local/lib/python3.11/site-packages)
fpdf==1.7.2 (/home/sandbox/.local/lib/python3.11/site-packages)
Shapely==1.7.1 (/home/sandbox/.local/lib/python3.11/site-packages)
cairocffi==1.7.1 (/home/sandbox/.local/lib/python3.11/site-packages)
pywavelets==1.7.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pygraphviz==1.7 (/home/sandbox/.local/lib/python3.11/site-packages)
pypandoc==1.6.3 (/home/sandbox/.local/lib/python3.11/site-packages)
nest-asyncio==1.6.0 (/home/sandbox/.local/lib/python3.11/site-packages)
monotonic==1.6 (/home/sandbox/.local/lib/python3.11/site-packages)
shellingham==1.5.4 (/home/sandbox/.local/lib/python3.11/site-packages)
pandas==1.5.3 (/home/sandbox/.local/lib/python3.11/site-packages)
pandocfilters==1.5.1 (/home/sandbox/.local/lib/python3.11/site-packages)
asn1crypto==1.5.1 (/home/sandbox/.local/lib/python3.11/site-packages)
pluggy==1.5.0 (/home/sandbox/.local/lib/python3.11/site-packages)
PyNaCl==1.5.0 (/home/sandbox/.local/lib/python3.11/site-packages)
snuggs==1.4.7 (/home/sandbox/.local/lib/python3.11/site-packages)
kiwisolver==1.4.5 (/home/sandbox/.local/lib/python3.11/site-packages)
xgboost==1.4.2 (/home/sandbox/.local/lib/python3.11/site-packages)
joblib==1.4.2 (/home/sandbox/.local/lib/python3.11/site-packages)
pydot==1.4.2 (/home/sandbox/.local/lib/python3.11/site-packages)
odfpy==1.4.1 (/home/sandbox/.local/lib/python3.11/site-packages)
svgwrite==1.4.1 (/home/sandbox/.local/lib/python3.11/site-packages)
frozenlist==1.4.1 (/home/sandbox/.local/lib/python3.11/site-packages)
analytics-python==1.4.post1 (/home/sandbox/.local/lib/python3.11/site-packages)
basemap==1.3.9 (/home/sandbox/.local/lib/python3.11/site-packages)
rasterio==1.3.3 (/home/sandbox/.local/lib/python3.11/site-packages)
basemap-data==1.3.2 (/home/sandbox/.local/lib/python3.11/site-packages)
sniffio==1.3.1 (/home/sandbox/.local/lib/python3.11/site-packages)
aiosignal==1.3.1 (/home/sandbox/.local/lib/python3.11/site-packages)
text-unidecode==1.3 (/home/sandbox/.local/lib/python3.11/site-packages)
tinycss2==1.3.0 (/home/sandbox/.local/lib/python3.11/site-packages)
mpmath==1.3.0 (/home/sandbox/.local/lib/python3.11/site-packages)
h5netcdf==1.3.0 (/home/sandbox/.local/lib/python3.11/site-packages)
oscrypto==1.3.0 (/home/sandbox/.local/lib/python3.11/site-packages)
imgkit==1.2.2 (/home/sandbox/.local/lib/python3.11/site-packages)
contourpy==1.2.1 (/home/sandbox/.local/lib/python3.11/site-packages)
language-data==1.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
marisa-trie==1.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
wsproto==1.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
wasabi==1.1.3 (/home/sandbox/.local/lib/python3.11/site-packages)
scikit-learn==1.1.3 (/home/sandbox/.local/lib/python3.11/site-packages)
click-plugins==1.1.1 (/home/sandbox/.local/lib/python3.11/site-packages)
html5lib==1.1 (/home/sandbox/.local/lib/python3.11/site-packages)
pylog==1.1 (/home/sandbox/.local/lib/python3.11/site-packages)
svglib==1.1.0 (/home/sandbox/.local/lib/python3.11/site-packages)
Brotli==1.1.0 (/home/sandbox/.local/lib/python3.11/site-packages)
et-xmlfile==1.1.0 (/home/sandbox/.local/lib/python3.11/site-packages)
cmudict==1.0.28 (/home/sandbox/.local/lib/python3.11/site-packages)
murmurhash==1.0.10 (/home/sandbox/.local/lib/python3.11/site-packages)
msgpack==1.0.8 (/home/sandbox/.local/lib/python3.11/site-packages)
pyxlsb==1.0.8 (/home/sandbox/.local/lib/python3.11/site-packages)
httpcore==1.0.5 (/home/sandbox/.local/lib/python3.11/site-packages)
spacy-loggers==1.0.5 (/home/sandbox/.local/lib/python3.11/site-packages)
tabula==1.0.5 (/home/sandbox/.local/lib/python3.11/site-packages)
miniKanren==1.0.3 (/home/sandbox/.local/lib/python3.11/site-packages)
moviepy==1.0.3 (/home/sandbox/.local/lib/python3.11/site-packages)
fastprogress==1.0.3 (/home/sandbox/.local/lib/python3.11/site-packages)
python-dotenv==1.0.1 (/home/sandbox/.local/lib/python3.11/site-packages)
numpy-financial==1.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
future==1.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
Flask-CacheBuster==1.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
multipledispatch==1.0.0 (/home/sandbox/.local/lib/python3.11/site-packages)
fastapi==0.111.0 (/home/sandbox/.local/lib/python3.11/site-packages)
numba==0.60.0 (/home/sandbox/.local/lib/python3.11/site-packages)
llvmlite==0.43.0 (/home/sandbox/.local/lib/python3.11/site-packages)
shap==0.39.0 (/home/sandbox/.local/lib/python3.11/site-packages)
starlette==0.37.2 (/home/sandbox/.local/lib/python3.11/site-packages)
referencing==0.35.1 (/home/sandbox/.local/lib/python3.11/site-packages)
Cython==0.29.36 (/home/sandbox/.local/lib/python3.11/site-packages)
httpx==0.27.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pydub==0.25.1 (/home/sandbox/.local/lib/python3.11/site-packages)
mne==0.23.4 (/home/sandbox/.local/lib/python3.11/site-packages)
watchfiles==0.23.0 (/home/sandbox/.local/lib/python3.11/site-packages)
rpds-py==0.20.0 (/home/sandbox/.local/lib/python3.11/site-packages)
prometheus-client==0.20.0 (/home/sandbox/.local/lib/python3.11/site-packages)
thrift==0.20.0 (/home/sandbox/.local/lib/python3.11/site-packages)
uvloop==0.20.0 (/home/sandbox/.local/lib/python3.11/site-packages)
scikit-image==0.20.0 (/home/sandbox/.local/lib/python3.11/site-packages)
jedi==0.19.1 (/home/sandbox/.local/lib/python3.11/site-packages)
arviz==0.19.0 (/home/sandbox/.local/lib/python3.11/site-packages)
uvicorn==0.19.0 (/home/sandbox/.local/lib/python3.11/site-packages)
terminado==0.18.1 (/home/sandbox/.local/lib/python3.11/site-packages)
cloudpathlib==0.18.1 (/home/sandbox/.local/lib/python3.11/site-packages)
fuzzywuzzy==0.18.0 (/home/sandbox/.local/lib/python3.11/site-packages)
graphviz==0.17 (/home/sandbox/.local/lib/python3.11/site-packages)
pyphen==0.16.0 (/home/sandbox/.local/lib/python3.11/site-packages)
textblob==0.15.3 (/home/sandbox/.local/lib/python3.11/site-packages)
torchvision==0.15.2 (/home/sandbox/.local/lib/python3.11/site-packages)
hypercorn==0.14.3 (/home/sandbox/.local/lib/python3.11/site-packages)
h11==0.14.0 (/home/sandbox/.local/lib/python3.11/site-packages)
statsmodels==0.13.5 (/home/sandbox/.local/lib/python3.11/site-packages)
typer==0.12.4 (/home/sandbox/.local/lib/python3.11/site-packages)
folium==0.12.1 (/home/sandbox/.local/lib/python3.11/site-packages)
cycler==0.12.1 (/home/sandbox/.local/lib/python3.11/site-packages)
toolz==0.12.1 (/home/sandbox/.local/lib/python3.11/site-packages)
matplotlib-venn==0.11.6 (/home/sandbox/.local/lib/python3.11/site-packages)
seaborn==0.11.2 (/home/sandbox/.local/lib/python3.11/site-packages)
pydyf==0.11.0 (/home/sandbox/.local/lib/python3.11/site-packages)
toml==0.10.2 (/home/sandbox/.local/lib/python3.11/site-packages)
SoundFile==0.10.2 (/home/sandbox/.local/lib/python3.11/site-packages)
geopandas==0.10.2 (/home/sandbox/.local/lib/python3.11/site-packages)
camelot-py==0.10.1 (/home/sandbox/.local/lib/python3.11/site-packages)
plotnine==0.10.1 (/home/sandbox/.local/lib/python3.11/site-packages)
nbclient==0.10.0 (/home/sandbox/.local/lib/python3.11/site-packages)
mizani==0.10.0 (/home/sandbox/.local/lib/python3.11/site-packages)
json5==0.9.25 (/home/sandbox/.local/lib/python3.11/site-packages)
markdownify==0.9.3 (/home/sandbox/.local/lib/python3.11/site-packages)
databricks-sql-connector==0.9.1 (/home/sandbox/.local/lib/python3.11/site-packages)
tabulate==0.9.0 (/home/sandbox/.local/lib/python3.11/site-packages)
python-docx==0.8.11 (/home/sandbox/.local/lib/python3.11/site-packages)
parso==0.8.4 (/home/sandbox/.local/lib/python3.11/site-packages)
librosa==0.8.1 (/home/sandbox/.local/lib/python3.11/site-packages)
docx2txt==0.8 (/home/sandbox/.local/lib/python3.11/site-packages)
blis==0.7.11 (/home/sandbox/.local/lib/python3.11/site-packages)
cligj==0.7.2 (/home/sandbox/.local/lib/python3.11/site-packages)
branca==0.7.2 (/home/sandbox/.local/lib/python3.11/site-packages)
defusedxml==0.7.1 (/home/sandbox/.local/lib/python3.11/site-packages)
pyth3==0.7 (/home/sandbox/.local/lib/python3.11/site-packages)
xarray-einstats==0.7.0 (/home/sandbox/.local/lib/python3.11/site-packages)
annotated-types==0.7.0 (/home/sandbox/.local/lib/python3.11/site-packages)
ptyprocess==0.7.0 (/home/sandbox/.local/lib/python3.11/site-packages)
cssselect2==0.7.0 (/home/sandbox/.local/lib/python3.11/site-packages)
python-pptx==0.6.21 (/home/sandbox/.local/lib/python3.11/site-packages)
Wand==0.6.13 (/home/sandbox/.local/lib/python3.11/site-packages)
Flask-Login==0.6.3 (/home/sandbox/.local/lib/python3.11/site-packages)
stack-data==0.6.3 (/home/sandbox/.local/lib/python3.11/site-packages)
pdfplumber==0.6.2 (/home/sandbox/.local/lib/python3.11/site-packages)
isodate==0.6.1 (/home/sandbox/.local/lib/python3.11/site-packages)
pdfkit==0.6.1 (/home/sandbox/.local/lib/python3.11/site-packages)
httptools==0.6.1 (/home/sandbox/.local/lib/python3.11/site-packages)
torchtext==0.6.0 (/home/sandbox/.local/lib/python3.11/site-packages)
patsy==0.5.6 (/home/sandbox/.local/lib/python3.11/site-packages)
pyprover==0.5.6 (/home/sandbox/.local/lib/python3.11/site-packages)
loguru==0.5.3 (/home/sandbox/.local/lib/python3.11/site-packages)
imageio-ffmpeg==0.5.1 (/home/sandbox/.local/lib/python3.11/site-packages)
webencodings==0.5.1 (/home/sandbox/.local/lib/python3.11/site-packages)
cons==0.4.6 (/home/sandbox/.local/lib/python3.11/site-packages)
logical-unification==0.4.6 (/home/sandbox/.local/lib/python3.11/site-packages)
nbclassic==0.4.5 (/home/sandbox/.local/lib/python3.11/site-packages)
xml-python==0.4.3 (/home/sandbox/.local/lib/python3.11/site-packages)
resampy==0.4.3 (/home/sandbox/.local/lib/python3.11/site-packages)
weasel==0.4.1 (/home/sandbox/.local/lib/python3.11/site-packages)
pdfrw==0.4 (/home/sandbox/.local/lib/python3.11/site-packages)
lazy-loader==0.4 (/home/sandbox/.local/lib/python3.11/site-packages)
ffmpy==0.4.0 (/home/sandbox/.local/lib/python3.11/site-packages)
entrypoints==0.4 (/home/sandbox/.local/lib/python3.11/site-packages)
etuples==0.3.9 (/home/sandbox/.local/lib/python3.11/site-packages)
pytesseract==0.3.8 (/home/sandbox/.local/lib/python3.11/site-packages)
einops==0.3.2 (/home/sandbox/.local/lib/python3.11/site-packages)
korean-lunar-calendar==0.3.1 (/home/sandbox/.local/lib/python3.11/site-packages)
jax==0.2.28 (/home/sandbox/.local/lib/python3.11/site-packages)
wcwidth==0.2.13 (/home/sandbox/.local/lib/python3.11/site-packages)
notebook-shim==0.2.4 (/home/sandbox/.local/lib/python3.11/site-packages)
pure-eval==0.2.3 (/home/sandbox/.local/lib/python3.11/site-packages)
zopfli==0.2.3 (/home/sandbox/.local/lib/python3.11/site-packages)
comm==0.2.2 (/home/sandbox/.local/lib/python3.11/site-packages)
jupyterlab-pygments==0.2.2 (/home/sandbox/.local/lib/python3.11/site-packages)
ffmpeg-python==0.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
sentencepiece==0.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
ipython-genutils==0.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
pronouncing==0.2.0 (/home/sandbox/.local/lib/python3.11/site-packages)
proglog==0.1.10 (/home/sandbox/.local/lib/python3.11/site-packages)
dm-tree==0.1.8 (/home/sandbox/.local/lib/python3.11/site-packages)
pyzbar==0.1.8 (/home/sandbox/.local/lib/python3.11/site-packages)
matplotlib-inline==0.1.7 (/home/sandbox/.local/lib/python3.11/site-packages)
confection==0.1.5 (/home/sandbox/.local/lib/python3.11/site-packages)
countryinfo==0.1.2 (/home/sandbox/.local/lib/python3.11/site-packages)
mdurl==0.1.2 (/home/sandbox/.local/lib/python3.11/site-packages)
mtcnn==0.1.1 (/home/sandbox/.local/lib/python3.11/site-packages)
nashpy==0.0.35 (/home/sandbox/.local/lib/python3.11/site-packages)
aeppl==0.0.31 (/home/sandbox/.local/lib/python3.11/site-packages)
python-multipart==0.0.9 (/home/sandbox/.local/lib/python3.11/site-packages)
slicer==0.0.7 (/home/sandbox/.local/lib/python3.11/site-packages)
fastapi-cli==0.0.5 (/home/sandbox/.local/lib/python3.11/site-packages)
ace-tools==0.0.1 (/home/sandbox/.local/lib/python3.11/site-packages)
setuptools==65.5.1 (/usr/local/lib/python3.11/site-packages)
pip==24.0 (/usr/local/lib/python3.11/site-packages)
wheel==0.43.0 (/usr/local/lib/python3.11/site-packages)
AI轻松学

普通人的AI入门指南

帮助你以低成本、零基础学会如何利用AI工具。AI就像办公软件一样,是每个人的必备技能。 掌握AI会让你在求职中占据优势,在未来的工作和学习中事半功倍。

查看详情>
未经允许不得转载:首席AI分享圈 » 让ChatGPT列出Python代码解释器中所有安装包
分享到

首席AI分享圈

首席AI分享圈专注于人工智能学习,提供全面的AI学习内容、AI工具和实操指导。我们的目标是通过高质量的内容和实践经验分享,帮助用户掌握AI技术,一起挖掘AI的无限潜能。无论您是AI初学者还是资深专家,这里都是您获取知识、提升技能、实现创新的理想之地。

联系我们