Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Best practice on using virtual environments in Python
Post: RE: Best practice on using virtual environments in...

(Feb-13-2024, 12:32 AM)snippsat Wrote: (Feb-12-2024, 11:40 PM)bytecrunch Wrote: Thank you. But after you create a virtual environment and also activated it,VS Code, PyCharm will detect the environ...
bytecrunch General Coding Help 6 842 Feb-13-2024, 11:17 PM
    Thread: Best practice on using virtual environments in Python
Post: RE: Best practice on using virtual environments in...

(Feb-11-2024, 03:24 PM)deanhystad Wrote: I make virtual environments for each large project I do so I can control the packages. For little day to day things I have a catchall venv that I use, addin...
bytecrunch General Coding Help 6 842 Feb-12-2024, 11:40 PM
    Thread: Best practice on using virtual environments in Python
Post: Best practice on using virtual environments in Pyt...

Hello everyone, I am curious to know how you others use virtual environments in their daily Python life....Virtual environments are an important topic. I am a Windows user this is what I think is the...
bytecrunch General Coding Help 6 842 Feb-10-2024, 02:20 PM
    Thread: Jupyter notebooks, jupyter kernels, virtual environment created in Anaconda...
Post: RE: Jupyter notebooks, jupyter kernels, virtual en...

(Sep-15-2023, 03:58 PM)snippsat Wrote: (Sep-14-2023, 06:29 PM)bytecrunch Wrote: However, without creating a jupyter kernel specific for that environment via:You don't install a jupyter kernel as m...
bytecrunch Data Science 8 2,336 Nov-05-2023, 05:21 PM
    Thread: Jupyter notebooks, jupyter kernels, virtual environment created in Anaconda...
Post: RE: Jupyter notebooks, jupyter kernels, virtual en...

(Sep-14-2023, 01:02 PM)snippsat Wrote: (Sep-14-2023, 11:56 AM)bytecrunch Wrote: Does choosing one kernel versus the other connect different environments to jupyter? Is that what is going on?No the...
bytecrunch Data Science 8 2,336 Sep-14-2023, 06:29 PM
    Thread: Jupyter notebooks, jupyter kernels, virtual environment created in Anaconda...
Post: RE: Jupyter notebooks, jupyter kernels, virtual en...

(Sep-14-2023, 11:06 AM)deanhystad Wrote: Quote:A jupyter kernel is a different name for Python interpreter, correct? No, A jupyter kernel is an interface to the Python interpreter. After creating...
bytecrunch Data Science 8 2,336 Sep-14-2023, 11:56 AM
    Thread: Jupyter notebooks, jupyter kernels, virtual environment created in Anaconda...
Post: Jupyter notebooks, jupyter kernels, virtual enviro...

Hello Forum, I think I am clear on what a virtual environment is: it is a "folder" that contains specific Python libraries/modules and a specific Python interpreter (we can choose the version). Ever...
bytecrunch Data Science 8 2,336 Sep-13-2023, 12:35 PM
  Photo Thread: Issues with Anaconda installation...
Post: RE: Issues with Anaconda installation...

(Jan-28-2023, 06:53 AM)zest83 Wrote: It sounds like the installation of Anaconda on your Windows 10 machine may not have completed correctly. One possible solution would be to try uninstalling Ana...
bytecrunch Data Science 2 955 Jan-28-2023, 01:49 PM
    Thread: Issues with Anaconda installation...
Post: Issues with Anaconda installation...

Hello, I have downloaded Anaconda on a new Windows 10 machine. The installer did everything without errors BUT I still don’t see Anaconda in the Start menu in left lower corner. I cannot launch anaco...
bytecrunch Data Science 2 955 Jan-27-2023, 11:29 PM
    Thread: Pandas dataframes and numpy arrays
Post: Pandas dataframes and numpy arrays

Hello, I have some basic questions about using Pandas: -- Structured and Unstructured Data: my understanding is that Pandas deals only with tabular 2D data (dataframes) or 1D data (dataseries) and c...
bytecrunch Data Science 1 1,339 Oct-11-2022, 12:25 PM
    Thread: Still not completely clear about namespaces...
Post: RE: Still not completely clear about namespaces...

(Feb-20-2022, 09:33 PM)deanhystad Wrote: import creates variables. import tkinter creates a variable named "tkinter" that references a module object. Output:>>> dir() ['__annotations__', '...
bytecrunch General Coding Help 3 1,953 Oct-07-2022, 05:44 PM
    Thread: Keeping up with IDEs and Virtual Environments...
Post: RE: Keeping up with IDEs and Virtual Environments....

Thank you! I think I am missing a piece about virtual environments: we don't use pip to add a Python interpreter to the virtual environment. So how do we connect a specific Python interpreter version...
bytecrunch General Coding Help 7 2,516 Sep-04-2022, 03:35 PM
    Thread: Keeping up with IDEs and Virtual Environments...
Post: Keeping up with IDEs and Virtual Environments...

Hello Everyone, I am trying to understand how to use virtual environments and different IDEs without problems...Let me start by explaining my current understanding of virtual environments: a virtual ...
bytecrunch General Coding Help 7 2,516 Sep-04-2022, 12:32 PM
    Thread: Saving the state of a program...
Post: RE: Saving the state of a program...

Hello and thanks. Those creating ML models, train the models and generate the optimal set of weights and biases which gets saved. The entire model is saved along with its biases and weights. When usi...
bytecrunch General Coding Help 5 3,706 Mar-08-2022, 10:03 PM
    Thread: Saving the state of a program...
Post: RE: Saving the state of a program...

(Mar-07-2022, 09:17 AM)ibreeden Wrote: (Mar-07-2022, 12:57 AM)bytecrunch Wrote: Is that correct?Yes, I agree. I can add to this you might also save the state do a database. So saving the state is ...
bytecrunch General Coding Help 5 3,706 Mar-07-2022, 09:53 PM
    Thread: Saving the state of a program...
Post: Saving the state of a program...

Hello, I would like to make sure that I have the correct understanding of what saving the state of a program means. Say we write a Python script with several statements that generate some lists, some...
bytecrunch General Coding Help 5 3,706 Mar-07-2022, 12:57 AM
    Thread: Still not completely clear about namespaces...
Post: RE: Still not completely clear about namespaces...

Thank you! Lots of stuff I didn't know.
bytecrunch General Coding Help 3 1,953 Mar-07-2022, 12:45 AM
    Thread: Still not completely clear about namespaces...
Post: Still not completely clear about namespaces...

Hello Forum, a) I understand that everything that gets loaded in RAM (classes, variables, lists, modules, etc.) has a name. The object and the name of each object are recorded somewhere in RAM when t...
bytecrunch General Coding Help 3 1,953 Feb-20-2022, 02:01 PM
    Thread: Jupyter Notebook as IDE
Post: Jupyter Notebook as IDE

Hello everyone, Installing the Anaconda distro installs a PYthon interpreter, modules, libraries as well as the Jupyter Notebook IDE. Jupyter uses the browser as user interface. The notebooks are JSO...
bytecrunch General Coding Help 0 1,611 Sep-12-2021, 07:41 PM
    Thread: Not including a constructor __init__ in the class definition...
Post: RE: Not including a constructor __init__ in the cl...

THANK YOU! Just to be sure, the real constructor is this other special method __new__ while __init__ is the initialization special method.... If we do NOT use the __nit__ method: all instances will ...
bytecrunch General Coding Help 3 11,910 Sep-01-2021, 09:43 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020