class Packages:
"""
This Class installs required Packages or library
"""
get_pckg = subprocess.check_output([sys.executable, '-m', 'pip', 'freeze'])
installed_packages = [r.decode().split('==')[0] for r in get_pckg.split()]
# List of your required packages
required_packages = ['dateparser', 'pandas-highcharts', 'scipy']
for packg in required_packages:
if packg in installed_packages:
pass
else:
print('installing package %s' % packg)
os.system('pip3 install ' + packg)
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- ํ๊ณ
- ์ฌ๊ณ ๊ด๋ฆฌ
- PoS
- Project
- MRP
์ ๊ณ ๋ ์ง๋ฌธ์ ๋๋ค
Hello ,
Rob Bro,
It is looking like you dont haveย the pip "ggplot" . if you are running python2 install with commandย "pip install ggplot" and if you are using python3 pip3 install ggplot . This willย solve your problem.
Thanks & Regards,
Jay R. Dasani
Thank you for responding.It worked when I reomved 'external_dependencies': from manifest.
I'm glad that i solved your problem.
Thanks that is valuable information! :D :
ํ ๋ก ์ด ์ฌ๋ฏธ์์ผ์ ๊ฐ์? ์ง์ ์ฐธ์ฌํด๋ณด์ธ์!
์ง๊ธ ๋ฐ๋ก ๊ฐ์ ํ์ฌ ๋ ์ ์๋น์ค๋ฅผ ์ด์ฉํด๋ณด๊ณ ํน๋ณํ ์ปค๋ฎค๋ํฐ์ ์ํตํ์ธ์!
๊ฐ์๊ด๋ จ ๊ฒ์๋ฌผ | ๋ต๊ธ | ํ๋ฉด | ํ๋ | |
---|---|---|---|---|
|
0
8์ 18
|
6491 | ||
|
2
12์ 16
|
9081 | ||
Order of installed modules
ํด๊ฒฐ ์๋ฃ
|
|
1
1์ 22
|
2562 | |
|
2
9์ 16
|
6072 | ||
Military states module -- help :D
ํด๊ฒฐ ์๋ฃ
|
|
1
3์ 15
|
3912 |
I can't thank you enough!
Thank you so much. It was much needed.