Skip to content

Commit 5ab6e8e

Browse files
authored
Merge pull request aws#253 from awslabs/arpin_recsys_pip_fix
Fixed: pip install pandas in container
2 parents 8916638 + 5ece4f6 commit 5ab6e8e

File tree

1 file changed

+1
-2
lines changed
  • introduction_to_applying_machine_learning/gluon_recommender_system

1 file changed

+1
-2
lines changed

introduction_to_applying_machine_learning/gluon_recommender_system/recommender.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
from mxnet.metric import MSE
88
import numpy as np
99

10-
import pip
11-
pip.main(['install', 'pandas'])
10+
os.system('pip install pandas')
1211
import pandas as pd
1312

1413
logging.basicConfig(level=logging.DEBUG)

0 commit comments

Comments
 (0)