I'm a beginner using youtube videos. I'm trying to learn to automate form's
from tkinter import *
import tkinter
import pandas as pd
I'm on window's and I've tried using anaconda, along with using pip install pandas.
I'm a beginner using youtube videos. I'm trying to learn to automate form's
from tkinter import *
import tkinter
import pandas as pd
I'm on window's and I've tried using anaconda, along with using pip install pandas.
Tkinter and Pandas are two separate packages. You can do: pip install tk
to install Tkinter and pip install pandas
to install Pandas. Then in your code you should be able to import them separately like so:
import tk
import pandas as pd
You can then reference Tkinter as tk
and Pandas as pd
You could also do:
from tk import *
from pandas import *
Which would allow you to have access to all of the libraries' attributes without having to use td.some_attribute
or pd.some_attribute
Does that help?
Edit:
It seems that Tkinter cannot be installed by pip at this point. It looks like the tk
package is actually the TensorKit package.