Update auto-ml-forecasting-bike-share.ipynb
auto-ml-forecasting-bike-share.ipynb crashes in cell using shutil.copy2() under some versions of Python in the local environment. Change to shutil.copy() so it works in most Python environments.
This commit is contained in:
@@ -450,8 +450,8 @@
|
||||
"\n",
|
||||
"script_folder = os.path.join(os.getcwd(), 'forecast')\n",
|
||||
"os.makedirs(script_folder, exist_ok=True)\n",
|
||||
"shutil.copy2('forecasting_script.py', script_folder)\n",
|
||||
"shutil.copy2('forecasting_helper.py', script_folder)"
|
||||
"shutil.copy('forecasting_script.py', script_folder)\n",
|
||||
"shutil.copy('forecasting_helper.py', script_folder)"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -630,4 +630,4 @@
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 2
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user