this post was submitted on 04 Jan 2025
9 points (90.9% liked)
Steam Deck
15155 readers
1548 users here now
A place to discuss and support all things Steam Deck.
Replacement for r/steamdeck_linux.
As Lemmy doesn't have flairs yet, you can use these prefixes to indicate what type of post you have made, eg:
[Flair] My post title
The following is a list of suggested flairs:
[Discussion] - General discussion.
[Help] - A request for help or support.
[News] - News about the deck.
[PSA] - Sharing important information.
[Game] - News / info about a game on the deck.
[Update] - An update to a previous post.
[Meta] - Discussion about this community.
Some more Steam Deck specific flairs:
[Boot Screen] - Custom boot screens/videos.
[Selling] - If you are selling your deck.
These are not enforced, but they are encouraged.
Rules:
- Follow the rules of Sopuli
- Posts must be related to the Steam Deck in an obvious way.
- No piracy, there are other communities for that.
- Discussion of emulators are allowed, but no discussion on how to illegally acquire ROMs.
- This is a place of civil discussion, no trolling.
- Have fun.
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Quick question, are you using bash or another terminal? I think they Deck comes with fish preinstalled, but if I remember right I don't think the default source command works in fish without making some other changes.
I'm using Konsole, seems to be the default terminal for me
Inside konsole, you can use different shells. Some common ones are
bash
,fish
, andzsh
. The deck comes with all three of those installed by default.You can usually tell which one you're using by either looking at the title bar of konsole when you first open it (should say something like ~:bash -- Konsole) or by running the command
echo $SHELL
Once you've confirmed you're using bash, run
which python
(orwhich python3
if you're using python 3). Outside of the venv you should see the command return/usr/bin/python
After you run your source command, run
which python
again. You should now see that the python location being run has changed to be inside the venv folder.With SteamOS being Arch-based you shouldn't ever really need to specify
python3
. Python 2 has been EOL for 5 years now, and thepython
command almost always points to python3 (unless you deliberately change it).