-
Update Python / Conda packages using mamba:
mamba update --all
-
standard tools I basically always need:
mamba install matplotlib regex pandas numpy -y
Last active
July 19, 2022 07:26
-
-
Save r0oland/a24b9acfb14ca358d04dca279445a312 to your computer and use it in GitHub Desktop.
Default Python Packages...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
BasedOnStyle: LLVM | |
AlignAfterOpenBracket: Align | |
AlignConsecutiveMacros: 'true' | |
AlignConsecutiveAssignments: 'true' | |
AlignOperands: 'false' | |
AllowAllArgumentsOnNextLine: 'false' | |
AllowShortBlocksOnASingleLine: 'false' | |
DerivePointerAlignment: 'false' | |
SortIncludes: 'false' | |
ColumnLimit: '85' | |
IndentWidth: '2' | |
UseTab: Never | |
PointerAlignment: Left | |
SpaceAfterCStyleCast: 'false' | |
SpaceAfterLogicalNot: 'false' | |
SpaceBeforeAssignmentOperators: 'true' | |
SpaceBeforeCpp11BracedList: 'true' | |
SpaceBeforeParens: ControlStatements | |
SpacesInCStyleCastParentheses: 'false' | |
IndentPPDirectives: BeforeHash | |
AlignTrailingComments: 'true' | |
ReflowComments: 'true' | |
SpacesBeforeTrailingComments: 1 | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment