byeproduct
Explore posts from serversUBUniversal Blue
•Created by byeproduct on 12/7/2024 in #🛟bazzite-help
PC crashes in steam game and then fans go on overdrive
I'm using Bazzite 41 with kernel version: 6.11.9-303.bazzite.fc41.x86_64
4 replies
UBUniversal Blue
•Created by byeproduct on 12/7/2024 in #🛟bazzite-help
PC crashes in steam game and then fans go on overdrive
So, I used the command:
And here are the logs I thought relevant from when it crashed again today when playing Overcooked 2:
It doesn't crash with other graphic intensive games, e.g. games using the Unreal engine.
Here are my specs:
- CPU Model name: AMD Ryzen 7 5800X 8-Core Processor
- GPU Model: AMD Radeon RX Vega (0x1002:0x687F:0xC1)
- Vulkan Version: 1.3.12
- Driver Name: radv
- Driver version: Mesa 24.2.7
4 replies
Mmarimo
•Created by byeproduct on 11/20/2024 in #help-support
Import function from local module
So you guided me down the right path. I ended up converting my folder
local_folder
into a package using UV init and adding all dependencies in that folder environment. UV automatically added the package to my marimo environment as a workspace tool.
I then used `uv pip install -e local_folder/.' to add my created package to marimo.
I restarted marimo and it picked up all my functions.
UV really made my life so easy. I didn't have to configure anything else. Plus, now I know how to create python packages 👻9 replies
Mmarimo
•Created by byeproduct on 11/20/2024 in #help-support
Import function from local module
Thanks for the feedback. It's weird. I've got the files that you am trying to import into my notebook running in a sub-folder from the directory I am running marimo from.
I checked in the terminal and in the notebook using os.getcwd(), and both return the same folder as the working folder.
I just upgraded to marimo 0.9.20, as I thought it may be a version issue, and it still gives me the missing package error when I try to use:
I just upgraded to marimo 0.9.20, as I thought it may be a version issue, and it still gives me the missing package error when I try to use:
from local_folder.my_python_script import my_function
Is there a setting I need to enable?
I have the default package manager set to UV and I can see all the installed packages.
My notebook seems to see my local import from ... import ...
as if it needs to be evaluated as a UV package and then finds that it is not installed. Is there a way to swap out the import resolution to prioritise checking if the folder exists first?
I have added init.py to both the current working directory and within the folder itself.9 replies