我用Python 2.7安装了Anaconda,然后安装了Python 3.6内核。我有很多Python 2软件包,我不想手动安装Python 3的所有软件包。有没有人写过,或者有人知道如何编写,一个bash脚本将遍历我的所有Python 2软件包并运行pip3 install [PACKAGE NAME]?
答案 0 :(得分:2)
在Python 2点中,运行library(shiny)
ui <- fluidPage(
fluidRow(
column(1,offset=0,
div(style = "font-size: 10px; padding: 14px 0px; margin:0%",
fluidRow(
sliderInput(inputId = "sizeSlide", label = "Sizing", value = 10, min = 1,max = 20)
)
),
div(style = "font-size: 10px; padding: 0px 0px; margin-top:-2em",
fluidRow(
radioButtons(inputId = "greatORless", label = "DBH Limiter", choices = c(">", "<"), selected = ">")
)
)
)
)
)
shinyApp(ui = ui, server = server)
。这会将所有已安装的软件包写入文本文件。
然后,使用您的Python 3点(可能是pip freeze > requirements.txt
),运行pip3
。这将安装pip install -r /path/to/requirements.txt
文件中列出的所有软件包。