本文介紹了查看 conda 交易的歷史記錄?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
有沒有辦法查看過去的 conda 交易?例如,我在當前環境中所做的所有 conda install
操作的歷史記錄會很棒.
Is there a way of viewing past conda transactions? For instance, a history of all conda install
actions I did in the current environment would be great.
謝謝
推薦答案
有一個--revisions |-r
標志.
conda list --revisions
查看 conda list --help
了解更多信息.
Check the conda list --help
for more info.
如果您想要準確的歷史記錄,每個 env 中都有一個 conda-meta/history
日志.例如,您可以提取在 env 中執行的每個命令,加上時間戳,使用
If you'd like an exact history, there is a conda-meta/history
log in every env. You could, for example, pull out every command ever executed in an env, plus a timestamp, using
grep -B1 "^# cmd" my_env/conda-meta/history
這篇關于查看 conda 交易的歷史記錄?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!
【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!