5) Google Colab Tutorial | System Level Command from Colab

preview_player
Показать описание

Python Tutorial Developer Series A - Z

Checkout my Best Seller Course on Pandas and Data Science Python :

Connect with me here:
Рекомендации по теме
Комментарии
Автор

It is very useful tutorial for beginners. Good Job

navinj
Автор

Hello. Thank you for the very helpful videos. The reason why !cd was not working correctly is because commands prefixed with ! are run in subshells which quit after being run. So for example, if you run the following command...

!pwd && cd sample_data && pwd

then the console output would read...

/content
/content/sample_data

If you added another !pwd after this on a new line like so...

!pwd && cd sample_data && pwd
!pwd

then the console would read...

/content
/content/sample_data
/content

to fix this problem, simply use %cd instead of !cd.

audiophilemk
Автор

Sir this github version you are using is paid or free?

SufiMystic