Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
powolnik
/
FirstApp
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
FirstApp
/
install.py
powolnik
Create install.py
8d1be08
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
154 Bytes
mport os
import
subprocess
def
install
(
package
):
subprocess.check_call([os.sys.executable,
"-m"
,
"pip"
,
"install"
, package])
install(
"transformers"
)