#How to start studying the AI course?

22 messages · Page 1 of 1 (latest)

sage robin
#

I just about starting this program but I am very confused on how to go. how do I start studying? there are too many information and they are pretty confusing.

Please assist.

novel dagger
winter igloo
#

Hello @novel dagger I started the AI course but i ran into issues during the setup. Specifically, the package azure-ai-inference could not be found on any of the conda channels. I also searched the microsoft conda channel and it wasn't listed. ANy idea what i need to do otherwise?

still plank
#

@lyric swallow can you look into this issue..

lyric swallow
lyric swallow
#

just updated, kindly check and see if it works now? @winter igloo

winter igloo
#

Hi @lyric swallow I still get the same error. However, i was able to install same with pip.

winter igloo
#

Hello @lyric swallow Is there any other thing i can attempt as i am unable to get this installed with Conda?

still plank
#

Hi @winter igloo could you just check this for me?

On conda the package is still named azure-ai-ml

Can you try running this to see if solves your issue

conda install -c microsoft azure-ai-ml
winter igloo
#

Thank you!!!! @still plank That works

still plank
#

@lyric swallow fyi

lyric swallow
#

thanks, let me update.

mystic summit
#

Hi there, I am a complete newbie in following the setup guide. How do I add my token I have just created to the terminal on my mac to create .env file.

still plank
# mystic summit Hi there, I am a complete newbie in following the setup guide. How do I add my t...

Hi @mystic summit

No problems and welcome to a world of learning something new everyday.

So simply open up the .env file in a text editor on your mac

In the file just add the following for your the GITHUB_TOKEN field:

GITHUB_TOKEN=your_github_token_here

Just replace your_github_token_here with your actual GitHub token value. You can save this content in a file named .env

Thanks all you need to do now everytime you use a sample which calls the .env file it will read this key this helps keep your personal tokens secure.

mystic summit
#

Hi Lee, thanks for the response but I am still not succesful in following your kind instructions. Is there anyway you can access my computer and help me get started. Or is there an online version for this course?

vague dome
#

Hi, @mystic summit To add your token to the terminal on your Mac and create a .env file, follow these steps:

  1. Open your terminal.
  2. Create a .env file in your desired directory by using the command:
touch .env
  1. Open the .env file for editing in a text editor (e.g., nano, vim):
    nano .env
  2. Inside the .env file, add your token in the format:
    TOKEN_NAME=your_token_value
  3. Save the file and exit the editor.
  4. To load the environment variables from your .env file in your Python script, you will need to install the dotenv package if you haven't already:
    pip install python-dotenv
  5. In your Python script, load the variables using:
from dotenv import load_dotenv
import os

load_dotenv()

token = os.getenv('TOKEN_NAME')
little eagle
# winter igloo Thank you!!!! <@814486609227546665> That works

Hey @still plank, I was having the same issue as @winter igloo and spent longer than I would've liked trying to resolve it. I eventually found the "azure-ai-ml" package and replaced it in my environment.yml file, however I wasn't sure if it would work until I joined the Discord and searched for the error I was getting. I think it would be worth updating this in the documentation, so others can avoid this potential issue 🙂 thanks for the tutorial!

oblique marsh
#

Here you can get started for free on the and some intermediate courses about AI, Agents, Cybersecurity, and Ethical Hacking.--> https://www.deeplearning.ai/ - https://www.coursera.org/ - and off coures true https://learn.microsoft.com - yes they are all safe and legit !

DeepLearning.AI | Andrew Ng | Join over 7 million people learning how to use and build AI through our online courses. Earn certifications, level up your skills, and stay ahead of the industry.

Learn with interactive lessons and technical documentation, earn professional development hours and certifications, and connect with the community.

still plank
little eagle